Change Layout Of Text Created In Java [Android]

Posted by Dan on Stack Overflow See other posts from Stack Overflow or by Dan
Published on 2010-03-13T18:16:59Z Indexed on 2010/03/13 18:25 UTC
Read the original article Hit count: 322

Filed under:
|
|
|
|

Ok right , i asked how to create a random number from 1-100 for android and i came to this

    TextView tv = new TextView(this);

    int random = (int)Math.ceil(Math.random()*101); 

    tv.setText("Your Number Is..."+ random );

What this does is create the default kinda "hello world" style text view and says "Your Number Is.... [Then Random Number]

My problem is that i cant change the layout of this text , because it is not defined in XML, if someone could tell me how to change the style , or like make the random number into a string so i could use it for any Textview layout that would be great ..

Thanks :)

© Stack Overflow or respective owner

Related posts about android

Related posts about random